home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / sbdemo.zip / README.TXT next >
Text File  |  1995-03-01  |  8KB  |  174 lines

  1.                          ShowBasic 1.0
  2.                          =============
  3.                 Copyright (c) 1995 MIKSoft, Inc.
  4.  
  5.        Tutorial/Demo/Training/Presentation Development Kit
  6.        ---------------------------------------------------
  7.        
  8. ShowBasic for Windows v1.0 is a new Windows development kit for
  9. creating interactive demos, tutorials, computer-based training
  10. materials, authoring presentation and multimedia titles. The unique 
  11. approach of ShowBasic allows developers to create programs that 
  12. control other Windows application by emulating Windows input devices - 
  13. mouse and keyboard. The complete or partial interactive session can 
  14. be either recorded using the special recorder tool that generates 
  15. ShowBasic source code. Using this code as a basis, programmers 
  16. then add code to create pop-up windows with text and/or graphics, 
  17. dialogs and routines to handle special events. 
  18. The presentation quality might be achieved by using special transition 
  19. effects, sprite animation, decorations and highlighting effects. 
  20. Multimedia sound and video (WAV, MIDI and AVI) are supported. 
  21. CBT titles and tutorials employ ShowBasic's ability to watch and 
  22. react on certain events: keyboard and mouse actions, window 
  23. activation and deactivation, focus change, closing of windows and 
  24. Windows messages. Many specialized functions support DDE, 
  25. communications with Program Manager, compressed and compound files, 
  26. wallpaper control and more.
  27.  
  28. ShowBasic's ability to call functions in external DLLs provide 
  29. access to Windows API and allows to extend functionality of 
  30. ShowBasic applications. For example, Autodesk Animator Windows 
  31. Player can be integrated with any ShowBasic program by using API in 
  32. AAPLAY.DLL. At the same time ShowBasic programs can be 
  33. controlled from another Windows application that allows to call 
  34. functions in external DLL. 
  35.  
  36. ShowBasic is designed to be very cooperative with other Windows tools 
  37. and applications. This means that often the power of ShowBasic 
  38. can be combined effortlessly with the power of other tools and use 
  39. the best features of each. For example, ShowBasic doesn't have 
  40. a hypertext capability. However ShowBasic application can control 
  41. WinHelp application and/or can be controlled by it. This is how 
  42. cooperation and integration of different tools can be achieved in 
  43. one project.
  44.  
  45. ShowBasic demo is available on CompuServe (sbdemo.zip in WINSDK forum) 
  46. and on Internet (ftp.cica.indiana.edu  /pub/pc/win3/demo/sbdemo.zip).
  47.  
  48. For more information, contact:
  49. MIKSoft, Inc., 
  50. 37 Landsdowne Road, 
  51. East Brunswick, NJ 08816 
  52. tel/fax (908) 390-8986
  53. CompuServe: 74127,3671
  54. Internet: mik@cnj.digex.com
  55.  
  56.  
  57. Features outline.
  58. ~~~~~~~~~~~~~~~~~
  59.  
  60. ShowBasic allows to build standalone applications or add-ons to another 
  61. applications in the following areas:
  62.  
  63.     - Computer Based Training (CBT) materials for any Windows
  64.       applications;
  65.     - automated product demos/presentations which control application
  66.       itself (do not depend on snapshots of the application's screens);
  67.     - independent Windows based tutorials that may use any other
  68.       Windows applications or be self-contained;
  69.     - independent presentations;
  70.     - integration of existing applications;
  71.     - macro-extension for existing applications;
  72.     - Windows utilities;
  73.  
  74.  
  75.   Scripting engine:
  76.   ================
  77.  
  78.     -  Full featured Basic language implementation includes:
  79.         * Source code interpreter;
  80.         * P-code compiler;
  81.         * Run time P-code interpreter;
  82.     -  Unlimited language extensions by means of using custom dynamic link 
  83.        libraries, access to full Windows API or any other DLL;
  84.     -  Interpreter can be "embedded" into users' application or called from 
  85.        WinHelp or any other program that allows to start another Windows 
  86.        application or able to access functions in an arbitrary DLL;
  87.     -  Ability to multithread: any Basic program can spawn another Basic 
  88.        program either suspending until the "child" is terminated or running 
  89.        with the "child" concurrently;
  90.     -  Ability to handle certain events that are triggered as a result of 
  91.        interaction with the user, therefore allowing asynchronous, event driven 
  92.        subroutines.
  93.  
  94.   Emulation, application and interaction control:
  95.   ===============================================
  96.  
  97.     -  Ability to start any application and wait until it is terminated 
  98.        (optionally).
  99.     -  Locating any window (control) based on its caption text or class;
  100.     -  Window or application forced termination;
  101.     -  Switching focus/activation;
  102.     -  Complete emulation of standard Windows input devices: keyboard and 
  103.        mouse;
  104.     -  Virtualization of screen/application dimensions to uniform 
  105.        emulation in different video modes;
  106.     -  "Smart" mouse actions: ability to emulate mouse actions in 
  107.        Windows controls and menus based on control/menu labels instead of 
  108.        physical screen coordinates;
  109.     -  Ability to watch and react to certain Windows events: 
  110.         * keyboard and mouse actions;
  111.         * window's activation/deactivation;
  112.         * window's focus change;
  113.         * closing of windows;
  114.         * Windows messages;
  115.     -  Extensive system, window or current state information;
  116.     -  DDE (Dynamic Data Exchange) support;
  117.  
  118.   Interaction features:
  119.   ====================
  120.  
  121.     -  Dialog boxes templates defined as part of the Basic language and allow 
  122.        to use any standard Windows controls as well as custom Windows controls 
  123.        implemented in DLLs;
  124.     -  Several enhanced controls are included and supported: "picture-button" and 
  125.        "progress bar";
  126.     -  "Event handlers" can be attached to any control or a dialog itself 
  127.        ("event handler" is a subroutine that is called asynchronously when 
  128.        some event is triggered by user's interaction with a control);
  129.     -  3-D control effects;
  130.     -  Pictures on the background: bitmaps (BMP, DIB, RLE) or Windows metafiles
  131.        (WMF, CLP).
  132.  
  133.   Presentation features:
  134.   =====================
  135.  
  136.     -  Sprite animation;
  137.     -  Dynamic pop-up windows presenting graphics from bitmap files (BMP, 
  138.        DIB, RLE) or Windows metafiles (WMF, CLP);
  139.     -  "Transparent" graphics support;
  140.     -  Dynamic replacement of the picture (or part of the picture) on a pop-up 
  141.        window;
  142.     -  Dynamic construction or extension of the picture on a pop-up window using
  143.        typical graphical constructors: lines, rectangles, polygons, filled 
  144.        areas, ellipses, text blocks; picture clips (bitmaps or metafiles);
  145.     -  Transition effects as in "slide show" type presentations for pop-up 
  146.        windows (a very rich set of effects);
  147.     -  Special window decorations including "shadows" and "pointers";
  148.     -  Special highlighting effects as dynamic color change,  "zoom" and 
  149.        "spotlight";
  150.     -  Animation or sequencing using Microsoft Video AVI files;
  151.     -  Sound support:
  152.         * MIDI sounds;
  153.         * WAV sounds;
  154.         * ability to play tunes using the PC internal speaker;
  155.  
  156.   Miscellaneous:
  157.   =============
  158.  
  159.     -  Program Manager DDE control support;
  160.     -  Compound files with compression support;
  161.     -  File copying;
  162.     -  Wallpaper control;
  163.     -  Ability to combine in one executable P-code of several programs and 
  164.        required presentation files: bitmaps, metafiles, sound files, etc.
  165.     -  Self-extracting compressed executables including ShowBasic runtime;
  166.  
  167.   Utilities:
  168.   =========
  169.  
  170.     -  ShowBasic DialogThief (dialog description generator);
  171.     -  ShowBasic Recorder;
  172.     -  ShowBasic Executable Compressor;
  173.     -  ShowBasic Development Environment.
  174.